Skip to content

Commit

Permalink
fix(build): remove unexpected spaces and parantheses
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartArray committed Nov 24, 2024
1 parent bed2ea6 commit 717602b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrib/guix/libexec/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ BASEPREFIX="${PWD}/depends"
store_path() {
grep --extended-regexp "/[^-]{32}-${1}-[^-]+${2:+-${2}}" "${GUIX_ENVIRONMENT}/manifest" \
| head --lines=1 \
| sed --expression='s|^[[:space:]]*"||' \
| sed --expression='s|\x29*$||' \
--expression='s|^[[:space:]]*"||' \
--expression='s|"[[:space:]]*$||'
}

Expand Down

0 comments on commit 717602b

Please sign in to comment.