From 12e2f6d5985e34891293d9e20bae09997136aa4e Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Fri, 17 Sep 2021 12:34:14 -0400 Subject: Fix sh template filenames --- src/util/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util') diff --git a/src/util/config.ts b/src/util/config.ts index a0de761..3692d8a 100644 --- a/src/util/config.ts +++ b/src/util/config.ts @@ -65,8 +65,8 @@ export const handleStartup = async ( ); await persistTemplate({ - inputFile: path.join(publicDir, "templates", "bash.template"), - outputFile: path.join(hostDir, "bash"), + inputFile: path.join(publicDir, "templates", "sh.template"), + outputFile: path.join(hostDir, "sh"), context: { TARGET_URL: targetUrl } } as Template); await persistTemplate({ -- cgit