hydrus/git_pull.sh

10 lines
85 B
Bash

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