hydrus/git_pull.sh

10 lines
85 B
Bash
Executable File

#!/bin/bash
pushd "$(dirname "$0")" || exit 1
git pull
echo "Done!"
popd || exit