Skip to content

Commit

Permalink
Merge pull request cypht-org#1203 from indridieinarsson/issue_1174
Browse files Browse the repository at this point in the history
Make bootstrap icons available on dockerized installs
  • Loading branch information
Shadow243 authored Aug 28, 2024
2 parents 6644dd4 + 58586d1 commit 7817e47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/config_gen.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,8 @@ function append_bootstrap_icons_files() {
if (!is_dir("site/fonts")) {
mkdir('site/fonts', 0755);
}
$source_folder = 'vendor/twbs/bootstrap-icons/font/fonts/';
$files = glob(VENDOR_PATH . "$source_folder*.*");
$source_folder = VENDOR_PATH.'twbs/bootstrap-icons/font/fonts/';
$files = glob("$source_folder*.*");
foreach($files as $file){
$dest_forlder = str_replace($source_folder, "site/fonts/", $file);
copy($file, $dest_forlder);
Expand Down

0 comments on commit 7817e47

Please sign in to comment.