Skip to content

Commit

Permalink
fix newline
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Nov 14, 2022
1 parent f353354 commit 3d10d98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/devenv.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ pkgs, nix }:
let
examples = ../examples;
lib = pkgs.lib;
in
pkgs.writeScriptBin "devenv" ''
#!/usr/bin/env bash
Expand Down Expand Up @@ -152,7 +153,7 @@ pkgs.writeScriptBin "devenv" ''
echo "Done. Saved $((($before - $after) / 1024 / 1024 )) MB in $SECONDS seconds."
;;
*)
echo "https://devenv.sh (version ${builtins.readFile ./version}): Fast, Declarative, Reproducible, and Composable Developer Environments"
echo "https://devenv.sh (version ${lib.removeSuffix "\n" (builtins.readFile ./version)}): Fast, Declarative, Reproducible, and Composable Developer Environments"
echo
echo "Usage: devenv command [options] [arguments]"
echo
Expand Down

0 comments on commit 3d10d98

Please sign in to comment.