linuxbox/update_wrapper.sh

8 lines
148 B
Bash
Executable File

#!/bin/bash
# Update wrapper for code_server update script
if [ -d ~/code_server ]; then
cd ~/code_server &&
git pull &&
./update.sh
fi