diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-25 23:00:21 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-12-25 23:00:21 +0900 |
| commit | ca9d8aafb02a023c2fcd09ed7b5a081cb0249aa6 (patch) | |
| tree | 9206154922d163dde236d703c702375efd5bc9cb | |
| parent | 5d9f0e1b7a045e21dc84b3ce6f1cc01d6a6053c8 (diff) | |
| -rw-r--r-- | content/peertube.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/peertube.md b/content/peertube.md index 58422ee..ee90913 100644 --- a/content/peertube.md +++ b/content/peertube.md @@ -316,7 +316,7 @@ Check for configuration changes, and report them in your `config/production.yaml ```sh cd /var/www/peertube/versions -diff -u "$(ls -t | head -2 | tail -1)/config/production.yaml.example" "$(ls -t | head -1)/config/production.yaml.example" +diff -u "$(command ls -t | head -2 | tail -1)/config/production.yaml.example" "$(command ls -t | head -1)/config/production.yaml.example" ``` ### Update nginx configuration @@ -325,7 +325,7 @@ Check changes in nginx configuration: ```sh cd /var/www/peertube/versions -diff -u "$(ls -t | head -2 | tail -1)/support/nginx/peertube" "$(ls -t | head -1)/support/nginx/peertube" +diff -u "$(command ls -t | head -2 | tail -1)/support/nginx/peertube" "$(command ls -t | head -1)/support/nginx/peertube" ``` ### Update systemd service @@ -334,7 +334,7 @@ Check changes in systemd configuration: ```sh cd /var/www/peertube/versions -diff -u "$(ls -t | head -2 | tail -1)/support/systemd/peertube.service" "$(ls -t | head -1)/support/systemd/peertube.service" +diff -u "$(command ls -t | head -2 | tail -1)/support/systemd/peertube.service" "$(command ls -t | head -1)/support/systemd/peertube.service" ``` ### Restart PeerTube |
