mirror of
https://github.com/Azure/setup-helm.git
synced 2025-11-10 14:36:55 +00:00
7 lines
226 B
JavaScript
7 lines
226 B
JavaScript
module.exports = function (input, map) {
|
|
if (this.cacheable)
|
|
this.cacheable();
|
|
const id = this.resourceQuery.substr(1);
|
|
input = input.replace('\'UNKNOWN\'', JSON.stringify(id));
|
|
this.callback(null, input, map);
|
|
};
|