diff --git a/Makefile b/Makefile index 27ac8f7..422a940 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,9 @@ VOLUME_MOUNT ?= $(PWD) P1 ?= 6119 P2 ?= 6120 -ifneq (,$(E)) +ifneq (,$(EE)) +SHELL_PORTS := -p 0.0.0.0:$(P1):6119 -p 0.0.0.0:$(P2):6120 +else ifneq (,$(E)) SHELL_PORTS := -p 127.0.0.1:$(P1):6119 -p 127.0.0.1:$(P2):6120 else SHELL_PORTS := @@ -145,13 +147,6 @@ pkg-deb: # L= T= [Z=gzip|xz] : Build .deb from packaging environment pkg: pkg-clean pkg-build pkg-deb # L= T= [Z=gzip|xz] : Build fresh .deb -### Install packages - -install: # L= T= : Install built .deb - @: $${L} $${T} - if [[ -z "$$(ls -A /var/lib/apt/lists)" ]]; then sudo apt update; fi - DEBIAN_FRONTEND=noninteractive sudo -E apt reinstall -y ./$(BUILD)/$(DEB) - ### Build and run application code frontend: # Compile frontend assets for production