- Escape quilt setup invoked section in the helper script

OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/local-npm-registry?expand=0&rev=11
This commit is contained in:
Adam Majer 2023-12-29 11:02:54 +00:00 committed by Git OBS Bridge
parent da60278f99
commit f925ba16b9
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Dec 29 11:02:40 UTC 2023 - Adam Majer <adam.majer@suse.de>
- Escape `quilt setup` invoked section in the helper script
-------------------------------------------------------------------
Fri Jul 21 12:59:44 UTC 2023 - Adam Majer <adam.majer@suse.de> 1.0.1

View File

@ -44,10 +44,10 @@ cp -r dist node_modules %{buildroot}%{_datadir}/%{name}
cat > %{buildroot}%{_bindir}/local-npm-registry << EOF
#!/bin/sh
if [ "x$QUILT_COMMAND" = "xsetup" ]
if [ "x\$QUILT_COMMAND" = "xsetup" ]
then
echo "Run in setup mode. 'npm install' skipped. Run 'npm ci' manually."
cp "$RPM_SOURCE_DIR/package-lock.json" .
cp "\$RPM_SOURCE_DIR/package-lock.json" .
exit 0
fi