8 lines
136 B
Bash
Executable file
8 lines
136 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# script/update: Update application to run for its current checkout.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
git pull
|
|
git submodule update
|