diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 20:30:57 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 20:30:57 +0100 |
commit | f534a9f36fc406d8cb4a11fb9c2d3d5795690e3e (patch) | |
tree | 9d1f90b0a39b50d32dfd5a66240f61db0769be72 /debian/Makefile | |
parent | workflows: prettify? (diff) | |
download | config-links-f534a9f36fc406d8cb4a11fb9c2d3d5795690e3e.tar.gz config-links-f534a9f36fc406d8cb4a11fb9c2d3d5795690e3e.zip |
debian/Makefile: use cd instead of pushd
Diffstat (limited to 'debian/Makefile')
-rw-r--r-- | debian/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/debian/Makefile b/debian/Makefile index 078d892..4ac0454 100644 --- a/debian/Makefile +++ b/debian/Makefile @@ -61,40 +61,40 @@ commit: .PHONY: tag tag: - pushd '$(call escape,$(root))' && gbp buildpackage --git-tag-only + cd -- '$(call escape,$(root))' && gbp buildpackage --git-tag-only .PHONY: src/test src/test: - pushd '$(call escape,$(root))' && gbp buildpackage --git-ignore-new -S -us -uc + cd -- '$(call escape,$(root))' && gbp buildpackage --git-ignore-new -S -us -uc .PHONY: src src: - pushd '$(call escape,$(root))' && gbp buildpackage -S --changes-option=-sa '-k0x$(call escape,$(GPG_KEY))' + cd -- '$(call escape,$(root))' && gbp buildpackage -S --changes-option=-sa '-k0x$(call escape,$(GPG_KEY))' .PHONY: bin/test bin/test: - pushd '$(call escape,$(root))' && gbp buildpackage --git-ignore-new -b -us -uc + cd -- '$(call escape,$(root))' && gbp buildpackage --git-ignore-new -b -us -uc .PHONY: bin bin: - pushd '$(call escape,$(root))' && gbp buildpackage -b '-k0x$(call escape,$(GPG_KEY))' + cd -- '$(call escape,$(root))' && gbp buildpackage -b '-k0x$(call escape,$(GPG_KEY))' .PHONY: dist/create dist/create: - pushd '$(call escape,$(root))' && env 'DIST=$(call escape,$(DIST))' git-pbuilder create + cd -- '$(call escape,$(root))' && env 'DIST=$(call escape,$(DIST))' git-pbuilder create .PHONY: dist/update dist/update: - pushd '$(call escape,$(root))' && env 'DIST=$(call escape,$(DIST))' git-pbuilder update + cd -- '$(call escape,$(root))' && env 'DIST=$(call escape,$(DIST))' git-pbuilder update .PHONY: dist/test dist/test: - pushd '$(call escape,$(root))' && gbp buildpackage --git-ignore-new --git-pbuilder '--git-dist=$(call escape,$(DIST))' + cd -- '$(call escape,$(root))' && gbp buildpackage --git-ignore-new --git-pbuilder '--git-dist=$(call escape,$(DIST))' .PHONY: dist dist: - pushd '$(call escape,$(root))' && gbp buildpackage --git-pbuilder '--git-dist=$(call escape,$(DIST))' - pushd '$(call escape,$(root))' && debsign '-k0x$(call escape,$(GPG_KEY))' --debs-dir '$(call escape,$(build_area))' + cd -- '$(call escape,$(root))' && gbp buildpackage --git-pbuilder '--git-dist=$(call escape,$(DIST))' + cd -- '$(call escape,$(root))' && debsign '-k0x$(call escape,$(GPG_KEY))' --debs-dir '$(call escape,$(build_area))' .PHONY: upload upload: |