Browse Source

Exclude .gitkeep files when creating app data dir

exclude-app-data-chown
Luke Childs 4 years ago
parent
commit
bcc71e9d02
  1. 2
      scripts/app

2
scripts/app

@ -106,7 +106,7 @@ if [[ "$command" = "install" ]]; then
echo "Setting up data dir for ${app}..."
mkdir -p "${app_data_dir}"
cp -a "${app_dir}/." "${app_data_dir}"
rsync --archive --verbose --exclude ".gitkeep" "${app_dir}/." "${app_data_dir}"
echo "Starting app ${app}..."
compose "${app}" up --detach

Loading…
Cancel
Save