Squashed commit of the following:

commit 8f6aee0fdb29bbe4049f99c6d79b25f9e5fca303
Author: Ted Blackman <ted@tlon.io>
Date:   Thu Jun 25 03:13:19 2020 -0400

    ci: revert debugging artifacts

commit e13a7fc050fd3e87cf9ae449d7fd4f14558b8092
Author: Ted Blackman <ted@tlon.io>
Date:   Thu Jun 25 02:48:55 2020 -0400

    ci: try @joemfb's one weird trick
This commit is contained in:
Ted Blackman 2020-06-25 03:25:31 -04:00
parent 82cfc691ce
commit 1216510fdb
2 changed files with 3 additions and 3 deletions

View File

@ -5,6 +5,7 @@ jobs:
nix: 2.3.6
before_install:
- git lfs pull
- echo "trusted-users = root travis" | sudo tee -a /etc/nix/nix.conf && sudo pkill nix-daemon
install:
- nix-env -iA cachix -f https://cachix.org/api/v1/install
script:

View File

@ -13,7 +13,7 @@ import argparse
import base64
logging.basicConfig(
level=logging.DEBUG,
level=logging.WARNING,
format='%(levelname)s %(funcName)s %(lineno)s - %(message)s',
stream=sys.stderr,
)
@ -55,8 +55,7 @@ def preprocess_args(old_args):
return ['--close'] + preprocess_args(old_args[1:])
return [old_args[0]] + preprocess_args(old_args[1:])
#args = preprocess_args(sys.argv[1:])
args = sys.argv[1:]
args = preprocess_args(sys.argv[1:])
logging.debug(['preprocessed', args])