mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-17 21:31:48 +01:00
14 lines
192 B
Bash
Executable File
14 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
PROJECT_ROOT="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))/.."
|
|
SCRIPTS_DIR="${PROJECT_ROOT}/scripts"
|
|
|
|
$SCRIPTS_DIR/stop
|
|
|
|
git stash -u
|
|
|
|
git pull
|
|
|
|
git stash pop
|
|
|
|
$SCRIPTS_DIR/start
|