Skip to content

Commit b5fdc37

Browse files
committed
[skip ci] fix tarball path, use cd instead of popd
1 parent 2ad673d commit b5fdc37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.packaging

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ package: gpg-key $(PACKAGES_DIR) #### Create final packages for all supported di
145145
# Create tarball containing all packages
146146
@echo "Creating tarball: $(TARBALL_NAME)"; \
147147
rm -f $(PACKAGES_DIR)/$(TARBALL_NAME); \
148-
pushd $(PACKAGES_DIR) > /dev/null; \
148+
cd $(PACKAGES_DIR); \
149149
tar -czvf "./$(TARBALL_NAME)" *; \
150-
popd > /dev/null; \
150+
cd ../.. \
151151
ls -la $(PACKAGES_DIR)/$(TARBALL_NAME);
152152

153153
.PHONY: gpg-key

0 commit comments

Comments
 (0)