mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 21:09:16 +02:00
5 lines
102 B
Bash
5 lines
102 B
Bash
#!/usr/bin/env bash -S -eux
|
|
|
|
npm_binaries () {
|
|
command -v yarn > /dev/null && yarn bin || npm bin
|
|
}
|