Fixed typo again.

This commit is contained in:
Shuai Lin 2016-12-14 12:33:34 +08:00
parent 56ca002a47
commit e48a8bf3cb
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@ Close the powershell window, and open a new one **as the normal user**.
Now run the following commands:
(Note that if you're using another drive than "C:", say "D:" ,you should change the "/c/seafile" in the following commands to "/d/seafile" instead.)
(Note that if you're using another drive than "C:", say "D:", you should change the "/c/seafile" in the following commands to "/d/seafile" instead.)
```sh
git clone https://github.com/haiwen/seafile-docker.git /c/seafile/

View file

@ -21,7 +21,7 @@ $version_stamp_file="$sharedir/seafile/seafile-data/current_version"
$bash_history="$sharedir/.bash_history"
function usage() {
Write-Host "Usage: launcher COMMAND [-skipPrereqs]"
Write-Host "Usage: launcher.ps1 COMMAND [-skipPrereqs]"
Write-Host "Commands:"
Write-Host " start: Start/initialize the container"
Write-Host " stop: Stop a running container"
@ -33,7 +33,7 @@ function usage() {
Write-Host " rebuild: Rebuild the container (destroy old, bootstrap, start new)"
Write-Host ""
Write-Host "Options:"
Write-Host " --skipPrereqs Don't check launcher prerequisites"
Write-Host " -skipPrereqs Don't check launcher prerequisites"
exit 1
}