From 6952ecd3b33f65208b8215c146c7e9a9e8bb6004 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 8 Sep 2025 02:09:31 -0400 Subject: [PATCH] fix: ignore the VHOST file --- plugins/git/post-app-rename-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git/post-app-rename-setup b/plugins/git/post-app-rename-setup index 2ec658342..0482d58e2 100755 --- a/plugins/git/post-app-rename-setup +++ b/plugins/git/post-app-rename-setup @@ -16,7 +16,7 @@ trigger-git-post-app-rename-setup() { fn-plugin-property-destroy "git" "$OLD_APP" pushd "$DOKKU_ROOT/$OLD_APP/." >/dev/null - find ./* \( -name ".cache" -o -name "cache" \) -prune -o -print | cpio -pdmu --quiet "$DOKKU_ROOT/$NEW_APP" + find ./* \( -name ".cache" -o -name "cache" -o -name "VHOST" \) -prune -o -print | cpio -pdmu --quiet "$DOKKU_ROOT/$NEW_APP" popd &>/dev/null || pushd "/tmp" >/dev/null }