8 lines
206 B
Text
8 lines
206 B
Text
|
#!/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}
|