Update update.md

Swap `sudo rake` for `sudo bundle exec rake` in update.md.

Justin R. Porter 9 anni fa
parent
commit
7d3977cc48
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      doc/manual/update.md

+ 3 - 3
doc/manual/update.md

@@ -6,13 +6,13 @@ You can also use [Capistrano](./capistrano.md) to keep your installation up to d
6 6
 
7 7
 ```
8 8
 cd /home/huginn/huginn
9
-sudo rake production:check
9
+sudo bundle exec rake production:check
10 10
 ```
11 11
 
12 12
 ### 1. Stop server
13 13
 
14 14
 ```
15
-sudo rake production:stop
15
+sudo bundle exec rake production:stop
16 16
 ```
17 17
 
18 18
 ### 2. Store the current version
@@ -87,6 +87,6 @@ sudo -u huginn -H editor .env
87 87
 
88 88
 ```
89 89
 # Export the init script
90
-sudo rake production:export
90
+sudo bundle exec rake production:export
91 91
 ```
92 92