Skip to content
Snippets Groups Projects

Fixed slash problem in pims_split alembic file

Merged Nathan Bockisch requested to merge pims-split-alembic-fix into main
1 unresolved thread
2 files
+ 3
7
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -101,12 +101,8 @@ queue
split_sh = """#!/bin/sh
set -o errexit
# Something to link measurement set to rawdata directory
# CASA envoy call?
# Populate the cache area
TILE=$(echo $1 | cut -d '/' -f 1)
PHCENTER=$(echo $1 | cut -d '/' -f 2)
TILE=$(echo $1 | cut -d \'/\' -f 1)
PHCENTER=$(echo $1 | cut -d \'/\' -f 2)
# Get the measurement set path
{{^existingRestore}}
Loading