aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 9252c56..2a75e85 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -30,9 +30,7 @@ fn build() {
for file in &files {
println!("File: {}", file.to_str().unwrap());
if !file.to_str().unwrap().ends_with("main.f90") {
- let s1:String = files2.to_string();
- let s2:String = file.to_str().unwrap().to_string();
- files2 = s1 + " " + &s2;
+ files2 = files2 + " " + file.to_str().unwrap();
}
}
println!("Files: {:?}", files);