blob: a418a75b0a482cedaaee2fb8a6c1296eb34130c4 [file] [log] [blame]
Jessica Wagantalld9c235c2018-03-21 13:03:59 -07001#!/bin/bash
2# Ensure we fail the job if any steps fail
3set -e -o pipefail
4
5# Strip -SNAPSHOT from pom
6find . -name "*.xml" -print0 | xargs -0 sed -i 's/-SNAPSHOT//g'