Jump to content

ARK Mods - Could not find a part of the path


Jimmy-CS

Recommended Posts

Hi all,

Looking to sort the cause of the following error. The file downloads and WindowsNoEditor folder appears but not LinuxNoEditor. I am on CentOS 7.

 

Error: Could not find a part of the path '/home/tcagame/customer/75/steamapps/workshop/content/346110/715028562/LinuxNoEditor'.
Link: http://cp.chicagoservers.co/Interface/TaskScheduler/TaskManager.aspx?taskid=1737

Log Details
Downloading file 715028562 from Steam...
Executing before Workshop install/update scripts...
Downloading The Volcano from Steam (1902435969/1902435969)...
Executing after Workshop install/update scripts...
Could not find a part of the path '/home/tcagame/customer/75/steamapps/workshop/content/346110/715028562/LinuxNoEditor'.

Link to comment
Share on other sites

Do you get the same error with other mods? It looks like it steamcmd is only downloading the Windows folder now. The files are probably cross platform anyway. If that's the case I have to update the script to use the Windows folder if Linux doesn't exist.

Link to comment
Share on other sites

1 minute ago, LFA said:

Do you get the same error with other mods? It looks like it steamcmd is only downloading the Windows folder now. The files are probably cross platform anyway. If that's the case I have to update the script to use the Windows folder if Linux doesn't exist.

Thanks for the quick reply! Structures Plus and Pugnacia Dinos installed successfully. The Volcano and every other one we and our customer have tried so far are throwing errors.

Link to comment
Share on other sites

Under these lines:

# Only extract files the correct folder depending on operating system
oseditor="WindowsNoEditor" if Environment.OSVersion.Platform == PlatformID.Win32NT else "LinuxNoEditor"
noeditor=Path.Combine(InstallPath, oseditor )

Add these to use Windows folder if Linux doesn't exist:

# Use other OS folder if it doesn't exist.
if not Directory.Exists(noeditor) :
  oseditor="LinuxNoEditor" if Environment.OSVersion.Platform == PlatformID.Win32NT else "WindowsNoEditor"
  noeditor=Path.Combine(InstallPath, oseditor )  

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Terms of Use