summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/peertube.md6
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