8 lines
No EOL
206 B
Bash
8 lines
No EOL
206 B
Bash
#!/bin/sh
|
|
cd "`dirname "$0"`"
|
|
|
|
result=${PWD##*/} # to assign to a variable
|
|
result=${result:-/} # to correct for the case where PWD=/
|
|
|
|
cd ..
|
|
exec ./dragonruby-publish --only-package ${result} |