Fixed up client files can now download and delete files, added web link to client logins added payments, quotes and recurring to client print and lots of little ui cleanups here and there
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
module.exports = function (grunt) {
|
||||
// Pull requests do not have secure variables enabled for security reasons.
|
||||
// Use this task before launching travis-sauce-browser task, so it would
|
||||
// exit early and won't try connecting to SauceLabs without credentials.
|
||||
grunt.registerTask('check-sauce-creds', function () {
|
||||
if (process.env.SAUCE_USERNAME === undefined) {
|
||||
grunt.log.writeln('No sauce credentials found');
|
||||
grunt.task.clearQueue();
|
||||
} else {
|
||||
grunt.log.writeln('Sauce credentials found');
|
||||
}
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user