File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -786,7 +786,7 @@ function getSampleAppVersion() {
786
786
try {
787
787
yield exec . exec ( "bash" , [
788
788
"-c" ,
789
- "find ../robot_ws -name package.xml -not -path ../robot_ws/src/deps/* -exec grep -Po '(?<=<version>)[^\\s<>]*(?=</version>)' {} +"
789
+ "find ../robot_ws -name package.xml -not -path ' ../robot_ws/src/deps/*' -exec grep -Po '(?<=<version>)[^\\s<>]*(?=</version>)' {} +"
790
790
] , getWorkingDirExecOptions ( grepAfter ) ) ;
791
791
version = grepAfter . stdout . trim ( ) ;
792
792
}
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ async function getSampleAppVersion() : Promise<string> {
68
68
try {
69
69
await exec . exec ( "bash" , [
70
70
"-c" ,
71
- "find ../robot_ws -name package.xml -not -path ../robot_ws/src/deps/* -exec grep -Po '(?<=<version>)[^\\s<>]*(?=</version>)' {} +" ] ,
71
+ "find ../robot_ws -name package.xml -not -path ' ../robot_ws/src/deps/*' -exec grep -Po '(?<=<version>)[^\\s<>]*(?=</version>)' {} +" ] ,
72
72
getWorkingDirExecOptions ( grepAfter ) ) ;
73
73
version = grepAfter . stdout . trim ( ) ;
74
74
} catch ( error ) {
@@ -187,4 +187,4 @@ async function run() {
187
187
core . setOutput ( 'sample-app-version' , SAMPLE_APP_VERSION ) ;
188
188
}
189
189
190
- run ( ) ;
190
+ run ( ) ;
You can’t perform that action at this time.
0 commit comments