Skip to content

Commit 2759361

Browse files
committed
fix(Makefile): remove temp dir in the end, remove redundant chmod command (already performed by install -m 755
1 parent 4524d5c commit 2759361

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile_oomox_plugin

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ install:
1616
packaging/ \
1717
$(PACKAGING_TMP_DIR)/
1818
sed -i -e 's|/opt/oomox/|$(APPDIR)/|g' $(PACKAGING_TMP_DIR)/packaging/bin/*
19-
chmod a+x "$(PACKAGING_TMP_DIR)/packaging/bin/"*
2019
install -d $(DEST_PREFIX)/bin/
2120
install -Dp -m 755 "$(PACKAGING_TMP_DIR)/packaging/bin/$(CLI_NAME)" "$(DEST_PREFIX)/bin/"
2221

@@ -30,4 +29,6 @@ install:
3029
./src/ \
3130
$(DEST_PLUGIN_DIR)/$(PLUGIN_NAME)/
3231

32+
$(RM) -r "$(PACKAGING_TMP_DIR)"
33+
3334
all: install

0 commit comments

Comments
 (0)