Browse Source

Fix incorrect repo check

improve-reliability
Luke Childs 5 years ago
parent
commit
76332a4946
  1. 2
      umbrel-dev

2
umbrel-dev

@ -119,7 +119,7 @@ if [[ "$command" = "init" ]]; then
repos="getumbrel/umbrel getumbrel/umbrel-dashboard getumbrel/umbrel-manager getumbrel/umbrel-middleware" repos="getumbrel/umbrel getumbrel/umbrel-dashboard getumbrel/umbrel-manager getumbrel/umbrel-middleware"
for repo in $repos; do for repo in $repos; do
git clone "https://github.com/$repo.git" "$repo" git clone "https://github.com/$repo.git" "$repo"
if [[ "$repo" != "getumbrel/umbrel" ]]; then if [[ "$repo" == "getumbrel/umbrel" ]]; then
cp "$(get_script_location)/docker-compose.override.yml" "$repo/" cp "$(get_script_location)/docker-compose.override.yml" "$repo/"
fi fi
done done

Loading…
Cancel
Save