This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
echo "Flags: ($*)" | |
# Check that everything's okay to run this | |
if ! cd "$(dirname "$(readlink -f "$0")")/signal-desktop-bin"; then | |
echo "Could not 'cd' to package's directory." | |
exit 1 | |
fi | |
echo "cd'd" | |
if [ "$#" != "1" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
echo "Flags: ($*)" | |
# Check that everything's okay to run this | |
if ! cd "$(dirname "$(readlink -f "$0")")/syncthing"; then | |
echo "Could not 'cd' to package's directory." | |
exit 1 | |
fi | |
echo "cd'd" | |
if [ "$#" != "1" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# update-unciv.sh | |
# update ./unciv/PKGBUILD to the given version | |
# License: WTFPL v2 "You just DO WHAT THE FUCK YOU WANT TO." | |
echo "Flags: ($*)" | |
# Check that everything's okay to run this | |
if ! cd "$(dirname "$(readlink -f "$0")")/unciv"; then | |
echo "Could not 'cd' to package's directory." | |
exit 1 |