cleaned up paths and fixed gitignore

This commit is contained in:
Ranomier 2021-10-08 16:51:46 +02:00
parent 5f6e2a414d
commit 0544ff7ba1
8 changed files with 29 additions and 2 deletions

25
sender/.gitignore vendored
View file

@ -1,25 +0,0 @@
# Docker project generated files to ignore
# if you want to ignore files created by your editor/tools,
# please consider a global .gitignore https://help.github.com/articles/ignoring-files
.vagrant*
bin
docker/docker
.*.swp
a.out
*.orig
build_src
.flymake*
.idea
.DS_Store
docs/_build
docs/_static
docs/_templates
.gopath/
.dotcloud
*.test
bundles/
.hg/
.git/
vendor/pkg/
pyenv
Vagrantfile

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
source "src/library.sh"
source "../src/library.sh"
"$DOCKER_BIN" build -t pipewire_sender "$SCRIPT_DIR"

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
source "./src/library.sh"
source "../src/library.sh"
"$DOCKER_BIN" run pipewire_sender

View file

@ -1,11 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
#set -x # activate traces
SCRIPT_DIR=$(realpath "$(dirname "$0")")
DOCKER_BIN="podman"
#DOCKER_BIN="docker" # switch if you use docker
printf "\n\n"
printf "## Running $0 ##\n"
printf "\n"