Skip to content

Commit 78ccae4

Browse files
committed
IGU-490 updated hard coded paths of iguana files
1 parent 62b5d78 commit 78ccae4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/add_header.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ done
182182

183183
# header for js-files
184184
# those are the js-files we wrote by our own
185-
js_files=("draw_activity_heatmap.js" "draw_last_seven.js" "filter-issues.js" "draw_bars_project_detail.js" "draw_spark.js")
185+
js_files=("common/static/js/graphs/draw_activity_heatmap.js" "timelog/static/js/graphs/draw_last_seven.js" "common/static/js/filter-issues.js" "project/static/js/graphs/draw_bars_project_detail.js" "project/static/js/graphs/draw_spark.js")
186186
for file_name in ${js_files[@]}; do
187-
file="common/static/js/$file_name"
187+
file="$file_name"
188188
# we use the scss-tag here because the syntax for comments is equivalent to scss ones
189189
is_license_present $file start_line_of_license "scss"
190190
if [ "$start_line_of_license" != 0 ]; then
@@ -199,7 +199,7 @@ for file_name in ${js_files[@]}; do
199199
done
200200

201201
# logo.svg
202-
file="common/static/css/logo.svg"
202+
file="common/static/logo.svg"
203203
is_license_present $file start_line_of_license "html"
204204
if [ "$start_line_of_license" != 0 ]; then
205205
# NOTE: don't set overwrite to false at initialisation - this is bash!

0 commit comments

Comments
 (0)