Skip to content

Commit

Permalink
Added omit-dir-times flag for phetsims/function-builder#119
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpen committed Jul 12, 2018
1 parent c0ff86f commit 75a7369
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/build-server/devDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module.exports = async function( simDir, simName, version, chipperVersion, brand
}
await new Promise( ( resolve, reject ) => {
new rsync()
.flags( 'razpFF' )
.flags( 'razpFFO' )
.source( buildDir + '/' )
.destination( user + '@' + host + ':' + simVersionDirectory )
.execute( ( err, code, cmd ) => {
Expand Down
2 changes: 1 addition & 1 deletion js/build-server/taskWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ async function taskWorker( { api, repos, locales, simName, version, email, brand
await new Promise( ( resolve, reject ) => {
winston.debug( 'Copying recursive ' + sourceDir + ' to ' + targetVersionDir );
new rsync()
.flags( 'razp' )
.flags( 'razpO' )
.set( 'exclude', '.rsync-filter' )
.source( sourceDir + '/' )
.destination( targetVersionDir )
Expand Down

0 comments on commit 75a7369

Please sign in to comment.