From 4fb14702cff8ad64be6397a984db406cc505deaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Claes=20Wallin=20=28=E9=9F=8B=E5=98=89=E8=AA=A0=29?= Date: Mon, 26 Feb 2018 16:36:13 +0800 Subject: [PATCH] Problem: nix expression has a broken bash script Solution: Add missing apostrophe. Closes #37 --- racket2nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket2nix b/racket2nix index 723fe29..c1ba8ca 100755 --- a/racket2nix +++ b/racket2nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { installPhase = '' if ! ulimit -n $maxFileDescriptors; then - echo >&2 If the number of allowed file descriptors is lower than ~~2048,' + echo >&2 If the number of allowed file descriptors is lower than '~~2048,' echo >&2 packages like drracket or racket-doc will not build correctly. echo >&2 If raising the soft limit fails '(like it just did)', you will echo >&2 have to raise the hard limit on your operating system.