Doing dumb things and building inside a path that contains spaces. Quoted the relevant bits in the build script (and a couple more shellcheck brought up that realistically won't ever be an issue, but the squigglies annoy me.
5 lines
335 B
Bash
Executable File
5 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
docker build --pull "$PWD/external/docker" -t spicetools/deps --platform linux/x86_64
|
|
docker build --build-context gitroot="$PWD/../../.git" . -t spicetools/spice:latest
|
|
docker run --rm -v "$PWD/dist:/src/src/spice2x/dist" -v "$PWD/bin:/src/src/spice2x/bin" -v "$PWD/.ccache:/src/src/spice2x/.ccache" spicetools/spice "$@"
|