diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-17 12:34:14 -0400 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-17 12:34:14 -0400 |
| commit | 12e2f6d5985e34891293d9e20bae09997136aa4e (patch) | |
| tree | 30235f28c3d3887bb1f235e8f7eec2038efa6c8e /src | |
| parent | cca92e4ba601b4a738807224b4abe53228bab1a0 (diff) | |
| download | ao-coverage-12e2f6d5985e34891293d9e20bae09997136aa4e.tar.gz ao-coverage-12e2f6d5985e34891293d9e20bae09997136aa4e.tar.bz2 ao-coverage-12e2f6d5985e34891293d9e20bae09997136aa4e.zip | |
Fix sh template filenames
Diffstat (limited to 'src')
| -rw-r--r-- | src/util/config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
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({ |
