Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

azuki-trusty / azk   deb

Repository URL to install this package:

Version: 0.5.1 

/ usr / lib / azk / node_modules / moment / tasks / check_sauce_creds.js

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');
        }
    });
};