Bug #5083
closedchartCommon.min.js is still #included in WCartesianChart.c
0%
Description
4bcd7066403957b30853d696b96d9d123473222a to master breaks build.
See https://github.com/kdeforche/wt/search?utf8=%E2%9C%93&q=chartCommon.min.js
Updated by Roel Standaert over 8 years ago
Hi,
ChartCommon.min.js with a capital 'C' is still included in the repository, but chartCommon.min.js with a small 'c' was removed because it was erroneously included (something went wrong when performing a rename). However, if you pull on a case-insensitive file system, like NTFS on Windows or HFS+ on Mac, this will just delete the file that's there without putting the right file in place. If you run 'git status' you'll see that ChartCommon.min.js is marked as deleted. You can fix this by doing 'git checkout src/js/ChartCommon.min.js', or if you don't have any uncommitted changes: 'git reset ---hard HEAD'.
Regards,
Roel
Updated by Kayra Akman over 8 years ago
Roel Standaert wrote:
Hi,
ChartCommon.min.js with a capital 'C' is still included in the repository, but chartCommon.min.js with a small 'c' was removed because it was erroneously included (something went wrong when performing a rename). However, if you pull on a case-insensitive file system, like NTFS on Windows or HFS+ on Mac, this will just delete the file that's there without putting the right file in place. If you run 'git status' you'll see that ChartCommon.min.js is marked as deleted. You can fix this by doing 'git checkout src/js/ChartCommon.min.js', or if you don't have any uncommitted changes: 'git reset ---hard HEAD'.
Regards,
Roel
Thanks for your reply, it was indeed the case.