From 0d60fefb68e54b6a7506b7ae1524ea3732d07a3e Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Tue, 30 Jul 2024 18:47:59 -0400 Subject: [PATCH] Delete temp files after creating Juxt community --- scripts/create-juxt-community.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/create-juxt-community.sh b/scripts/create-juxt-community.sh index ac9dba2..c7e7dad 100755 --- a/scripts/create-juxt-community.sh +++ b/scripts/create-juxt-community.sh @@ -29,4 +29,6 @@ fi run_verbose docker compose exec juxtaposition-ui node -e "$create_community_script" "$name" "$description" "$title_ids" "${icon_path:+/tmp/icon}" "${banner_path:+/tmp/banner}" +docker compose exec juxtaposition-ui rm -f /tmp/icon /tmp/banner + print_success "Successfully created community $name."