Skip to content

Commit 4c78f32

Browse files
fix(cli): change 'scripts/' to 'script/' (#486)
2 parents 47e8481 + bb0e329 commit 4c78f32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "create-freecodecamp-os-app"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
edition = "2021"
55
description = "CLI to create the boilerplate for a new freeCodeCamp-OS app"
66
license = "BSD-3-Clause"

Diff for: cli/src/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ impl Course {
143143
fn touch_conf(&self) {
144144
let static_files = if self.features.contains(&Features::ScriptInjection) {
145145
Some(json!( {
146-
"/scripts/injectable.js": "./client/injectable.js".to_string(),
146+
"/script/injectable.js": "./client/injectable.js".to_string(),
147147
}))
148148
} else {
149149
None

0 commit comments

Comments
 (0)