From 6fcae7113081f92b8753cbf1df491c1648051e7e Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Sun, 7 Apr 2013 15:50:59 +0000 Subject: [PATCH] Fix ContainerParams.txt filename: This file path is referenced as configParams/ContainerParams.txt in the Thorfile but the real filename is containerParams.txt so build can't be done: $ thor build:dev my :: Deleting other development files... :: Building full source file /dist/kinetic-vmy.js... $PWD/Thorfile:153:in `read': No such file or directory - \ configParams/ContainerParams.txt (Errno::ENOENT) It was fixed in 04ddd321 by changing the path in the Thorfile, but broken by 912cef43. This change rename the file with the correct name. --- configParams/{containerParams.txt => ContainerParams.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename configParams/{containerParams.txt => ContainerParams.txt} (100%) diff --git a/configParams/containerParams.txt b/configParams/ContainerParams.txt similarity index 100% rename from configParams/containerParams.txt rename to configParams/ContainerParams.txt