|
|
@ -271,11 +271,10 @@ if [[ $gitchoice == "yes" ]]; then
|
|
|
|
make package/$gitapp/compile
|
|
|
|
make package/$gitapp/compile
|
|
|
|
done
|
|
|
|
done
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
|
|
read -p "What single openwrt package do you want to clone and build today? " appname
|
|
|
|
read -p "What single openwrt package do you want to clone and build today? " appname
|
|
|
|
|
|
|
|
|
|
|
|
# Clone the app
|
|
|
|
# Clone the app
|
|
|
|
git clone "${base_url}${appname}.git" "package/appname"
|
|
|
|
git clone "${base_url}${appname}.git" "package/$appname"
|
|
|
|
|
|
|
|
|
|
|
|
# Find directories named "libexec" and apply chmod +x to them and their contents recursively
|
|
|
|
# Find directories named "libexec" and apply chmod +x to them and their contents recursively
|
|
|
|
find . -type d -name "libexec" -exec chmod -R +x {} \;
|
|
|
|
find . -type d -name "libexec" -exec chmod -R +x {} \;
|
|
|
@ -287,4 +286,5 @@ make package/$appname/clean
|
|
|
|
./scripts/feeds update -a
|
|
|
|
./scripts/feeds update -a
|
|
|
|
./scripts/feeds install -a
|
|
|
|
./scripts/feeds install -a
|
|
|
|
make package/$appname/compile
|
|
|
|
make package/$appname/compile
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|