diff options
| author | Mathieu Lirzin <mthl@gnu.org> | 2016-08-02 18:13:48 +0200 |
|---|---|---|
| committer | Mathieu Lirzin <mthl@gnu.org> | 2016-08-02 18:17:26 +0200 |
| commit | d239f096ed2f0f2858b1b78316988e0962082ca0 (patch) | |
| tree | 45baad20bac3ff026ae5222e41c0ef079d37401a /bin | |
| parent | Add (cuirass) module. (diff) | |
| download | cuirass-d239f096ed2f0f2858b1b78316988e0962082ca0.tar.gz | |
cuirass: Use 'let' instead of 'let*'.
* bin/cuirass.in (main): Use 'let' instead of 'let*'.
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/cuirass.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cuirass.in b/bin/cuirass.in index 0d34636..553a5d0 100644 --- a/bin/cuirass.in +++ b/bin/cuirass.in @@ -55,7 +55,7 @@ exec ${GUILE:-@GUILE@} --no-auto-compile -e main -s "$0" "$@" ;;; (define* (main #:optional (args (command-line))) - (let* ((opts (getopt-long args %options))) + (let ((opts (getopt-long args %options))) (parameterize ((%program-name (car args)) (%package-database (option-ref opts 'database (%package-database))) |
