9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
git pull
|
|
|
|
if [ ! -x "build-helper.sh" ]; then
|
|
echo "build-helper.sh not found or not executable. Making it executable..."
|
|
chmod +x build-helper.sh
|
|
fi
|
|
|
|
./build-helper.sh
|