mirror of
https://github.com/b-ryan/powerline-shell.git
synced 2026-09-09 23:16:23 -04:00
7 lines
141 B
Bash
Executable file
7 lines
141 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
docker build -t powerline-shell .
|
|
docker run --rm --interactive --tty \
|
|
--volume $PWD:/code \
|
|
powerline-shell "$@"
|