Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Commit

Permalink
Fix Daily Cron Time
Browse files Browse the repository at this point in the history
  • Loading branch information
Tmeister committed Nov 15, 2014
1 parent 0e57fbc commit 438022d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,9 @@ app.route('/')
}); //END ROUTE

/**
* CRON JOB TO GET NEW CODE FROM GITHUB EVERY DAY AT 1AM
* CRON JOB TO GET NEW CODE FROM GITHUB EVERY DAY AT 1:30AM
*/
var job = new CronJob(' 1 * * *', function(){
var job = new CronJob('30 1 * * *', function(){

//GET FRESH CODE
getSourceCode();
Expand Down

0 comments on commit 438022d

Please sign in to comment.