Skip to content

Commit 5c50762

Browse files
Require shellwords in artifact rake task (#17319) (#17320)
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. (cherry picked from commit 964468f) Co-authored-by: Cas Donoghue <[email protected]>
1 parent 6ab56e3 commit 5c50762

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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)