From 6fb7df09133293e73aaebfacec82ef1ca3d712fa Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 16 Jul 2024 12:18:36 +0000 Subject: [PATCH] make upload: fix missing "exit" ftp command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ae155ba..d186d03 100644 --- a/Makefile +++ b/Makefile @@ -113,7 +113,7 @@ clean: rm -rf build upload: build/case.gcode - lftp -e "set ssl:verify-certificate false; put $<" -u ${PRINTER_AUTH} ftps://${PRINTER_HOST} + lftp -e "set ssl:verify-certificate false; put $<; exit" -u ${PRINTER_AUTH} ftps://${PRINTER_HOST} .PHONY: all install readme doc clean upload