Skip to content

Commit 97a83f8

Browse files
committed
setup.sh: remove extraneous cat cmd
1 parent e0b7c12 commit 97a83f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkgs/stdenv/generic/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ exitHandler() {
119119
if [ -n "${showBuildStats:-}" ]; then
120120
times > "$NIX_BUILD_TOP/.times"
121121
local -a buildTimesArray
122-
IFS=" " read -r -a buildTimesArray <<< "$(cat "$NIX_BUILD_TOP/.times")"
122+
IFS=" " read -r -a buildTimesArray < "$NIX_BUILD_TOP/.times"
123123
# Print the following statistics:
124124
# - user time for the shell
125125
# - system time for the shell

0 commit comments

Comments
 (0)