Compare commits
26 commits
b281236b47
...
c5ceebe84e
Author | SHA1 | Date | |
---|---|---|---|
c5ceebe84e | |||
6b4d738524 | |||
cf99ad907a | |||
59f99025ca | |||
30cbb04c6c | |||
df017bf711 | |||
ed2286247d | |||
f4ea4edb54 | |||
0c68af95fe | |||
cb6700c6c5 | |||
8fd410ef1d | |||
a8e7442603 | |||
15e699d538 | |||
1d35f88862 | |||
2200e73a0e | |||
1346ea53a1 | |||
62ae85897d | |||
e3e22e540c | |||
227e2321f9 | |||
2d90626a47 | |||
45934f0c92 | |||
69194bdfd5 | |||
b573a28c63 | |||
51af0452ab | |||
0fe82114c5 | |||
8dadd0820e |
5 changed files with 8 additions and 8 deletions
|
@ -91,7 +91,7 @@ begin
|
||||||
end
|
end
|
||||||
|
|
||||||
function getBackupArgs -V root
|
function getBackupArgs -V root
|
||||||
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" (getServiceRoot $argv)
|
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" "$root"
|
||||||
end
|
end
|
||||||
|
|
||||||
runInstaller --force $argv
|
runInstaller --force $argv
|
||||||
|
|
|
@ -138,7 +138,7 @@ begin
|
||||||
end
|
end
|
||||||
|
|
||||||
function getBackupArgs -V root
|
function getBackupArgs -V root
|
||||||
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" (getServiceRoot $argv)
|
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" --exclude "docker-compose.base.yml" "$root"
|
||||||
end
|
end
|
||||||
|
|
||||||
runInstaller --force $argv
|
runInstaller --force $argv
|
||||||
|
|
|
@ -65,8 +65,8 @@ begin
|
||||||
function getServiceLocations
|
function getServiceLocations
|
||||||
end
|
end
|
||||||
|
|
||||||
function getBackupArgs
|
function getBackupArgs -V root
|
||||||
printf "%s\n" --hidden --no-ignore "config|data|mods|worlds|\.properties\$" --exclude "docker-compose.yml" (getServiceRoot $argv)
|
printf "%s\n" --hidden --no-ignore "config|data|mods|worlds|\.properties\$" --exclude "docker-compose.yml" "$root"
|
||||||
end
|
end
|
||||||
|
|
||||||
runInstaller --force $argv
|
runInstaller --force $argv
|
||||||
|
|
|
@ -40,8 +40,8 @@ begin
|
||||||
function getServiceLocations
|
function getServiceLocations
|
||||||
end
|
end
|
||||||
|
|
||||||
function getBackupArgs
|
function getBackupArgs -V root
|
||||||
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" (getServiceRoot $argv)
|
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" "$root"
|
||||||
end
|
end
|
||||||
|
|
||||||
runInstaller --force $argv
|
runInstaller --force $argv
|
||||||
|
|
|
@ -37,8 +37,8 @@ begin
|
||||||
printf "%s\0" "$_flag_name" /
|
printf "%s\0" "$_flag_name" /
|
||||||
end
|
end
|
||||||
|
|
||||||
function getBackupArgs
|
function getBackupArgs -V root
|
||||||
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" (getServiceRoot $argv)
|
printf "%s\n" --hidden --no-ignore . --exclude "docker-compose.yml" "$root"
|
||||||
end
|
end
|
||||||
|
|
||||||
runInstaller --force $argv
|
runInstaller --force $argv
|
||||||
|
|
Loading…
Reference in a new issue