From c894ed17ecdcf4e9b0a480d783e6407faa6c7081 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sat, 30 Jun 2018 11:55:13 -0600 Subject: [PATCH] Convert line endings when using Atr --- core/config.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/core/config.js b/core/config.js index e425bdfa..92016731 100644 --- a/core/config.js +++ b/core/config.js @@ -601,11 +601,8 @@ function getDefaultConfig() { }, extract : { cmd : 'atr', - // :TODO: If text, we need to ensure to normalize - // :TODO: can only do a single file & need full path. May need e.g. {fileName}, '{extractPath}\{fileName}' ??? - // ....create a small wrapper .js: atrex.js --extract {archivePath} --to {extractPath} // note: -l converts Atari 0x9b line feeds to 0x0a; not ideal if we're dealing with a binary of course. - args : [ '{archivePath}', 'x', '-a', '-o', '{extractPath}', '{fileList}' ] + args : [ '{archivePath}', 'x', '-a', '-l', '-o', '{extractPath}', '{fileList}' ] } } },