mirror of
https://github.com/tfausak/witch.git
synced 2024-11-26 09:43:03 +03:00
9 lines
142 B
Bash
9 lines
142 B
Bash
|
#! /usr/bin/env sh
|
||
|
set -o errexit -o xtrace
|
||
|
|
||
|
volume=cabal-store
|
||
|
if ! docker volume inspect "$volume"
|
||
|
then
|
||
|
docker volume create "$volume"
|
||
|
fi
|