Skip to content

Commit

Permalink
Windows: assume rsync from https://www.itefix.net/cwrsync
Browse files Browse the repository at this point in the history
  • Loading branch information
pjknowles committed Feb 22, 2024
1 parent ea67a64 commit f71376d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sjef/util/Job.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ std::tuple<bool, std::string, std::string> sjef::util::Job::pull_rundir(int verb
std::string fwin = m_project.filename("", "", 0).string();
std::replace(fwin.begin(), fwin.end(), '\\', '/');
std::replace(fwin.begin(), fwin.end(), ':', '/');
command += " '/" + fwin + "'";
command += " '/cygdrive/" + fwin + "'";
#else
command += " '" + m_project.filename("", "", 0).string() + "'";
#endif
Expand Down

0 comments on commit f71376d

Please sign in to comment.