File size: 345 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/env node
// This script will return a url of the calypso-strings.pot file generated in our latest trunk build.
// eg: node bin/get-circle-string-artifact-url | xargs curl
const getCircleArtifactUrl = require( './get-circle-artifact-url' );
( async function main() {
await getCircleArtifactUrl( /\/calypso-strings\.pot$/ );
} )();
|