Skip to content

These docs are for the recently-released v2.

If you are or were using v1, check out the v1 to v2 migration guide and/or read about pinning v1.x.

 

 

Migrating between versions

Migrating from v1

  • The generate-id subcommand has been dropped in favor of a mktemp-like workflow. Replace all instances of

    shell
    id=$(job-queue generate-id)
    job-queue push my-scope $id
    job-queue pop $id

    with

    shell
    id=$(job-queue push my-scope)
    job-queue pop $id

Except where otherwise noted, © 2024 by Henry Bley-Vroman and licensed under zsh-job-queue's license.