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