Skip to content

Commit 51e1448

Browse files
committed
Require shellwords in artifact rake task
The #17310 PR changed the rake task for artifact creation to use shellwords from standard library. The acceptance tests need to explitily load that library. This commit updates the rake file to handle loading the required code.
1 parent 0d931a5 commit 51e1448

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

rakelib/artifacts.rake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18+
require 'shellwords'
19+
1820
namespace "artifact" do
1921
SNAPSHOT_BUILD = ENV["RELEASE"] != "1"
2022
VERSION_QUALIFIER = ENV["VERSION_QUALIFIER"].to_s.strip.empty? ? nil : ENV["VERSION_QUALIFIER"]

0 commit comments

Comments
 (0)