Skip to content

Commit

Permalink
closes #70
Browse files Browse the repository at this point in the history
  • Loading branch information
ihh committed Feb 12, 2019
1 parent 3ddcff4 commit 2962172
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
4 changes: 1 addition & 3 deletions README.md
Expand Up @@ -96,13 +96,11 @@ Options
Assign Makefile variables from command line
Var=Val
Alternative syntax for '-D Var Val'
-l DIRECTORY
Iterates through directory writing metadata on each file found
-s,--quiet,--silent
Silent operation; do not print recipes as they are executed
--one-shell
Run recipes in single shell (loosely equivalent to GNU Make's .ONESHELL)
-y,--sync URI
-y,--sync,--sync-dir URI
Synchronize current working directory to a remote URI. If no --sync-exec is specified, S3-form URIs (s3://mybucket/my/path) are handled using the AWS CLI tool; other URIs will be passed to rsync.
-x,--sync-exec COMMAND
Specify executable for --sync.
Expand Down
9 changes: 1 addition & 8 deletions prolog/biomake/cli.pl
Expand Up @@ -296,14 +296,6 @@
% ESOTERIC FEATURES
% ----------------------------------------

parse_arg(['-l',F|L],L,
goal( (collect_stored_targets(F,[]),
show_stored_targets
) )) :-
ensure_loaded(library(biomake/scan)),
!.
arg_info('-l','DIRECTORY','Iterates through directory writing metadata on each file found').

simple_arg('-s',silent(true)).
arg_alias('-s','--quiet').
arg_alias('-s','--silent').
Expand All @@ -320,6 +312,7 @@
atom_string(URI,URIs),
!.
arg_alias('-y','--sync').
arg_alias('-y','--sync-dir').
recover_arg(['-y',URI],sync(URI)).
arg_info('-y','URI','Synchronize current working directory to a remote URI. If no --sync-exec is specified, S3-form URIs (s3://mybucket/my/path) are handled using the AWS CLI tool; other URIs will be passed to rsync.').

Expand Down

0 comments on commit 2962172

Please sign in to comment.