Skip to content

Commit

Permalink
fix(cli): change 'scripts/' to 'script/' (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaunSHamilton authored Feb 13, 2024
2 parents 47e8481 + bb0e329 commit 4c78f32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "create-freecodecamp-os-app"
version = "3.0.1"
version = "3.0.2"
edition = "2021"
description = "CLI to create the boilerplate for a new freeCodeCamp-OS app"
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impl Course {
fn touch_conf(&self) {
let static_files = if self.features.contains(&Features::ScriptInjection) {
Some(json!( {
"/scripts/injectable.js": "./client/injectable.js".to_string(),
"/script/injectable.js": "./client/injectable.js".to_string(),
}))
} else {
None
Expand Down

0 comments on commit 4c78f32

Please sign in to comment.