10 lines
131 B
Bash
Executable File
10 lines
131 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# script/update: Update application to run for its current checkout.
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
script/bootstrap
|