diff options
author | John Livingston <38844060+JohnXLivingston@users.noreply.github.com> | 2018-10-01 16:21:55 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-10-03 09:53:03 +0200 |
commit | 38d937002a731ecc8edc6b81018e27663580ee96 (patch) | |
tree | e159a3386d68d68a00f66d7274961a8de19605d7 | |
parent | bebae342f3bd131cb370223bbc514e91cba355ff (diff) | |
download | PeerTube-38d937002a731ecc8edc6b81018e27663580ee96.tar.gz PeerTube-38d937002a731ecc8edc6b81018e27663580ee96.tar.zst PeerTube-38d937002a731ecc8edc6b81018e27663580ee96.zip |
fix diff order
-rwxr-xr-x | scripts/upgrade.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index 714c02616..b29615fb1 100755 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh | |||
@@ -56,5 +56,5 @@ yarn install --production --pure-lockfile | |||
56 | cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml | 56 | cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml |
57 | 57 | ||
58 | echo "Differences in configuration files..." | 58 | echo "Differences in configuration files..." |
59 | diff -u "$PEERTUBE_PATH/versions/peertube-${VERSION}/config/production.yaml.example" $PEERTUBE_PATH/config/production.yaml | 59 | diff -u $PEERTUBE_PATH/config/production.yaml "$PEERTUBE_PATH/versions/peertube-${VERSION}/config/production.yaml.example" |
60 | 60 | ||