Skip to content

Tags: LightAndLight/ipso

Tags

v0.6

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build: fix post build hook (#425)

If you look past all those backslashes, the post build hook is adding
the command `OUT_PATHS=$OUT_PATHS /run/uploadToCache` to the queue (where
`$OUT_PATHS` has been substituted for the actual value). This only works when
`$OUT_PATHS` contains no spaces.

As an example, running `pueue add -- VAR="hello world" printenv VAR` adds the
command `VAR=hello world printenv VAR` to the queue, which is not what we want.
The queue tries to run a command called `world` with arguments `printenv` and
`VAR`. The problem is that the quotes around the variable aren't carried onto
the queue.  We need to run `pueue add -- VAR=\"hello world\" printenv VAR` so
that the queue executes `VAR="hello world" printenv VAR`.

v0.6-rc.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build: v0.6-rc.1 (#423)

v0.5

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #385 from LightAndLight/0.5

0.5

v0.5-rc.1

build: v0.5-rc.1

v0.4

build: v0.4

v0.4-rc.3

build: v0.4-rc.3

v0.4-rc.2

Merge branch 'main' of github.com:LightAndLight/ipso into 0.4

v0.4-rc.1

build: v0.4-rc.1

v0.3

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #315 from LightAndLight/0.3

0.3

v0.3-rc.1

build: v0.3-rc.1