Changeset 1425
- Timestamp:
- 03/17/18 10:56:13 (5 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/make-release.sh
r1424 r1425 76 76 mv xinha-cdn/examples/index.html.2 xinha-cdn/examples/index.html 77 77 78 # Replace the XinhaEasy.js link to the "CDN" link 79 for file in xinha-cdn/examples/* 80 do 81 replace "../XinhaEasy.js" "//s3-us-west-1.amazonaws.com/xinha/xinha-${VER}/XinhaEasy.js" -- $file 82 done 83 78 84 cat >xinha-cdn/README.TXT <<'EOF' 79 85 Xinha CDN Local Distribution … … 95 101 tar -cjvf xinha-cdn.tar.bz2 xinha-cdn 96 102 103 # Update the s3 bucket 104 read -p "Upload to \"s3://xinha/xinha-${VER}/\"? [yN]: " 105 if [ "$REPLY" == "y" ] || [ "$REPLY" == "Y" ] 106 then 107 cd xinha 108 s3cmd --delete-removed sync ./ s3://xinha/xinha-${VER}/ 109 cd .. 110 fi 111 112 read -p "Upload to \"s3://xinha/xinha-latest/\"? [yN]: " 113 if [ "$REPLY" == "y" ] || [ "$REPLY" == "Y" ] 114 then 115 cd xinha 116 s3cmd --delete-removed sync ./ s3://xinha/xinha-latest/ 117 cd .. 118 fi 119 97 120 cd xinha 98 121 php contrib/compress_yui.php … … 101 124 zip -r xinha-compressed-$VER.zip xinha 102 125 tar -cjvf xinha-compressed-$VER.tar.bz2 xinha 126
Note: See TracChangeset
for help on using the changeset viewer.