diff options
| author | Arun Isaac | 2024-08-22 17:03:01 +0100 | 
|---|---|---|
| committer | Arun Isaac | 2024-08-22 17:03:01 +0100 | 
| commit | 62e8278a3dc742b37080d719329b9aa4426cee2d (patch) | |
| tree | d48124eec7d56cfd1a53af69e04775bb5a6912b7 | |
| parent | 434eaaee542610d68613451ba95ec9d86816eabd (diff) | |
| download | ravanan-62e8278a3dc742b37080d719329b9aa4426cee2d.tar.gz ravanan-62e8278a3dc742b37080d719329b9aa4426cee2d.tar.lz ravanan-62e8278a3dc742b37080d719329b9aa4426cee2d.zip | |
bin: Remove unused invoke function.
* bin/ravanan (invoke): Delete function.
| -rwxr-xr-x | bin/ravanan | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/bin/ravanan b/bin/ravanan index 4b7a392..d823173 100755 --- a/bin/ravanan +++ b/bin/ravanan @@ -59,11 +59,6 @@ exec guile --no-auto-compile -e main -s "$0" "$@" (define (invalid-option opt name arg result) (error "Invalid option" name)) -(define (invoke . args) - "Invoke program specified by ARGS. Raise exception if it fails." - (unless (zero? (apply system* args)) - (error "Command invocation failed" args))) - (define main (match-lambda ((_ args ...) | 
