6 lines
104 B
Bash
6 lines
104 B
Bash
#!/bin/sh
|
|
if [ -e gem2rpm.yml ] ; then
|
|
cfg="--config gem2rpm.yml"
|
|
fi
|
|
exec gem2rpm $cfg -o *spec *gem
|