File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 9191
9292echo " Using $COMPRESS to compress tar file"
9393
94+ # Save all files inside design and platform folders
95+ if [ -v FULL_ISSUE ]; then
96+ DESIGN_PLATFORM_FILES=" $DESIGN_DIR $PLATFORM_DIR "
97+ else
98+ DESIGN_PLATFORM_FILES=" $DESIGN_DIR /config.mk $PLATFORM_DIR /config.mk"
99+ fi
100+
101+ set -x
94102tar --use-compress-program=${COMPRESS} \
95103 --ignore-failed-read -chf $1 _${ISSUE_TAG} .tar.gz \
96104 --transform=" s|^|$1 _${ISSUE_TAG} /|S" \
97105 --transform=" s|^$1 _${ISSUE_TAG}${FLOW_HOME} /|$1 _${ISSUE_TAG} /|S" \
98- $DESIGN_DIR /config.mk \
106+ $DESIGN_PLATFORM_FILES \
99107 $LOG_DIR \
100108 $OBJECTS_DIR \
101109 $REPORTS_DIR \
102110 $RESULTS_DIR \
103- $PLATFORM_DIR /config.mk \
104111 $SCRIPTS_DIR \
105112 $( for f in $ISSUE_CP_FILES ; do echo $f ; done | sort | uniq)
106113
You can’t perform that action at this time.
0 commit comments