From f419cd4501af15ce8d3692fc07a85688f4764a2c Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Tue, 1 Jun 2021 17:54:39 -0400 Subject: [PATCH] chore: use cd not pushd popd --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7baa02c..fba9b20 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ WASMCEPTION_URL=https://github.com/gwsystems/wasmception/releases/download/v0.2. .PHONY: build build: ifeq ($(ARCH),x86_64) - pushd /sledge/awsm/wasmception && wget ${WASMCEPTION_URL} -O wasmception.tar.gz && tar xvfz wasmception.tar.gz && rm wasmception.tar.gz && popd + cd /sledge/awsm/wasmception && wget ${WASMCEPTION_URL} -O wasmception.tar.gz && tar xvfz wasmception.tar.gz && rm wasmception.tar.gz endif test -f ./${COMPILER}/wasmception/dist/bin/clang || make -C ${COMPILER}/wasmception @cd ${COMPILER} && cargo build --release && cd ${ROOT}