Skip to content

Commit

Permalink
Merge pull request #16 from blackfyre/Fix-add-art-table-os-bug
Browse files Browse the repository at this point in the history
Fix-add-art-table-os-bug
  • Loading branch information
blackfyre authored Oct 11, 2023
2 parents bb1abe0 + 7aaa998 commit 5d694aa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions migrations/1696479790_add_art_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package migrations

import (
"encoding/json"
"path/filepath"
"strings"

"blackfyre.ninja/wga/assets"
Expand Down Expand Up @@ -60,7 +59,7 @@ func readArtworkStage1Files() ([]ArtworkStage1, error) {

//if file name contains `artworks_stage_1_` then add to files
if strings.Contains(file.Name(), "artworks_stage_2_") {
files = append(files, filepath.Join("reference", file.Name()))
files = append(files, "reference/"+file.Name())
}
}

Expand Down

0 comments on commit 5d694aa

Please sign in to comment.