17 lines
287 B
Plaintext
17 lines
287 B
Plaintext
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
||
|
|
||
|
if machine fast5; then
|
||
|
setprofiles prod
|
||
|
elif machine fast4; then
|
||
|
setprofiles test
|
||
|
else
|
||
|
setprofiles devel test prod
|
||
|
fi
|
||
|
|
||
|
if run; then
|
||
|
echo "PROFILE=$PROFILE"
|
||
|
fi
|
||
|
|
||
|
# pas de build automatique
|
||
|
AUTOBUILD=
|