Skip to content

Commit 8dd0234

Browse files
committed
chore: fix concatStringsSep usage
1 parent e6f4046 commit 8dd0234

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix/ext/wrappers/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ buildPgrxExtension_0_11_3 rec {
6565

6666
preBuild = ''
6767
echo "Processing git tags..."
68-
echo '${concatStringsSep "," previousVersions }' | sed 's/,/\n/g' > git_tags.txt
68+
echo '${builtins.concatStringsSep "," previousVersions }' | sed 's/,/\n/g' > git_tags.txt
6969
'';
7070

7171
postInstall = ''

0 commit comments

Comments
 (0)