Skip to content

Commit

Permalink
Merge pull request #170 from gerlero/makefile
Browse files Browse the repository at this point in the history
Fix unwanted files not being removed after build
  • Loading branch information
gerlero authored Jul 1, 2023
2 parents 86c2685 + d59be15 commit 2ccdc91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build configuration
SHELL = /bin/bash
SHELL = /bin/zsh
OPENFOAM_VERSION = 2212
APP_NAME = OpenFOAM-v$(OPENFOAM_VERSION)
OPENFOAM_TARBALL_URL = https://dl.openfoam.com/source/v$(OPENFOAM_VERSION)/OpenFOAM-v$(OPENFOAM_VERSION).tgz
Expand Down Expand Up @@ -117,8 +117,8 @@ build/$(APP_NAME).app/Contents/Resources/$(APP_NAME).dmg: build/$(APP_NAME)-buil
rm -rf $(VOLUME)/homebrew
[ ! -L $(VOLUME)/usr ] || rm $(VOLUME)/usr
rm -rf $(VOLUME)/build
rm -rf $(VOLUME)/**/.git
rm -f $(VOLUME)/**/.DS_Store
rm -rf -- $(VOLUME)/**/.git(N)
rm -f -- $(VOLUME)/**/.DS_Store(N)
ifeq ($(DEPENDENCIES_KIND),standalone)
rm $(VOLUME)/usr/bin/brew
rm $(VOLUME)/Brewfile
Expand Down

0 comments on commit 2ccdc91

Please sign in to comment.