summaryrefslogtreecommitdiff
path: root/tools/dist/nightly.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/dist/nightly.sh')
-rwxr-xr-xtools/dist/nightly.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/dist/nightly.sh b/tools/dist/nightly.sh
index b20b641..0f2f991 100755
--- a/tools/dist/nightly.sh
+++ b/tools/dist/nightly.sh
@@ -55,15 +55,15 @@ head=`$svn info $repo/trunk | grep '^Revision' | cut -d ' ' -f 2`
# Get the latest versions of the rolling scripts
for i in release.py dist.sh
do
- $svn export -r $head $repo/trunk/tools/dist/$i@$head $dir/$i
+ $svn export --force -r $head $repo/trunk/tools/dist/$i@$head $dir/$i
done
# We also need ezt
-$svn export -r $head $repo/trunk/build/generator/ezt.py@$head $dir/ezt.py
+$svn export --force -r $head $repo/trunk/build/generator/ezt.py@$head $dir/ezt.py
# Create the environment
cd roll
echo '----------------building environment------------------'
-../release.py --base-dir ${abscwd}/roll build-env
+../release.py --base-dir ${abscwd}/roll build-env trunk-nightly
# Roll the tarballs
echo '-------------------rolling tarball--------------------'
@@ -72,11 +72,11 @@ cd ..
# Create the information page
echo '-------------------moving results---------------------'
-./release.py --base-dir ${abscwd}/roll post-candidates trunk-nightly $head \
- --target $target
+# ./release.py --base-dir ${abscwd}/roll post-candidates trunk-nightly $head \
+# --target $target
if [ ! -d "$target/dist" ]; then mkdir "$target/dist"; fi
if [ -d "$target/dist/r$head" ]; then rm -r "$target/dist/r$head"; fi
-mv $target/deploy $target/dist/r$head
+mv roll/deploy $target/dist/r$head
# Some static links for the most recent artifacts.
ln -sf "r$head" "$target/dist/current"