mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-07 15:02:40 +00:00
windows: fix invalid powershell syntax
``` At line:1 char:34 + cd $env:CI_PROJECT_DIR/gst-build && python git-update --no-interactio ... + ~~ The token '&&' is not a valid statement separator in this version. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordEx ception + FullyQualifiedErrorId : InvalidEndOfLine ``` This is not bash, but powershell, hue hue hue
This commit is contained in:
parent
5c0ad2facd
commit
bc7f2feb5b
1 changed files with 2 additions and 2 deletions
|
@ -429,7 +429,7 @@ valgrind ges:
|
||||||
- cd $env:CI_PROJECT_DIR/gst-build
|
- cd $env:CI_PROJECT_DIR/gst-build
|
||||||
- cp -r C:/subprojects/* subprojects/
|
- cp -r C:/subprojects/* subprojects/
|
||||||
# Run the git-update script and feed it the manifest to setup the environment
|
# Run the git-update script and feed it the manifest to setup the environment
|
||||||
- cd $env:CI_PROJECT_DIR/gst-build && python git-update --no-interaction --manifest=$env:CI_PROJECT_DIR/manifest.xml
|
- cd $env:CI_PROJECT_DIR/gst-build; python git-update --no-interaction --manifest=$env:CI_PROJECT_DIR/manifest.xml
|
||||||
# For some reason, options are separated by newline instead of space, so we
|
# For some reason, options are separated by newline instead of space, so we
|
||||||
# have to replace them first.
|
# have to replace them first.
|
||||||
- $env:MESON_ARGS = $env:MESON_ARGS.replace("`n"," ")
|
- $env:MESON_ARGS = $env:MESON_ARGS.replace("`n"," ")
|
||||||
|
@ -483,7 +483,7 @@ build msys2 :
|
||||||
- cp -r C:\subprojects\* subprojects\
|
- cp -r C:\subprojects\* subprojects\
|
||||||
|
|
||||||
# Run the git-update script and feed it the manifest to setup the environment
|
# Run the git-update script and feed it the manifest to setup the environment
|
||||||
- cd $env:CI_PROJECT_DIR/gst-build && python git-update --no-interaction --manifest=$env:CI_PROJECT_DIR/manifest.xml
|
- cd $env:CI_PROJECT_DIR/gst-build; python git-update --no-interaction --manifest=$env:CI_PROJECT_DIR/manifest.xml
|
||||||
# For some reason, options are separated by newline instead of space, so we
|
# For some reason, options are separated by newline instead of space, so we
|
||||||
# have to replace them first.
|
# have to replace them first.
|
||||||
- $env:MESON_ARGS = $env:MESON_ARGS.replace("`n"," ")
|
- $env:MESON_ARGS = $env:MESON_ARGS.replace("`n"," ")
|
||||||
|
|
Loading…
Reference in a new issue