Subversion Repositories SvarDOS

Rev

Rev 334 | Rev 557 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 334 Rev 337
Line 62... Line 62...
62
 
62
 
63
 
63
 
64
# function that builds the packages repository
64
# function that builds the packages repository
65
function dorepo {
65
function dorepo {
66
  # clear out the web repo and copy all zip files to it
66
  # clear out the web repo and copy all zip files to it
67
  rm "$REPOROOT"/*
67
  rm "$REPOROOT"/*.zip
68
  cp "$PKGDIR"/* "$REPOROOT/"
68
  cp "$PKGDIR"/*.zip "$REPOROOT/"
69
  # now strip the sources from repo versions
69
  # now strip the sources from repo versions
70
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
70
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
71
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "source/*" ';'
71
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "source/*" ';'
72
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
72
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "Source/*" ';'
73
 
73