Subversion Repositories SvarDOS

Rev

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

Rev 326 Rev 334
Line 61... Line 61...
61
ALLPKGS="$COREPKGS $EXTRAPKGS"
61
ALLPKGS="$COREPKGS $EXTRAPKGS"
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
  # copy all zip files to the web repo
66
  # clear out the web repo and copy all zip files to it
-
 
67
  rm "$REPOROOT"/*
67
  cp "$PKGDIR"/* $REPOROOT/
68
  cp "$PKGDIR"/* "$REPOROOT/"
68
  # now strip the sources from repo versions
69
  # now strip the sources from repo versions
69
  find "$REPOROOT/" -iname '*.zip' -exec zip "{}" -d "SOURCE/*" ';'
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
 
73