11 lines
174 B
Bash
Executable file
11 lines
174 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
if [ "$(basename $(realpath $PWD))" = ".git" ]; then
|
|
cd ..
|
|
fi
|
|
|
|
for updater in ./update_*.sh; do
|
|
${updater}
|
|
done
|
|
|
|
# vim: set ft=sh et sw=0 ts=2 sts=0:
|