10 lines
220 B
Bash
Executable file
10 lines
220 B
Bash
Executable file
#! /usr/bin/bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
podman run \
|
|
--rm \
|
|
--volume "$(systemd-path user)"/Sync/docker:/shared \
|
|
emacs_compile:latest \
|
|
sh -c "cp /src/emacs-tide*_amd64.deb /shared"
|