Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(2 edits)

edit: someone has told me that "cd documents/markdown_kaiju" would work its no first slashI have no confirmed yet though.

okay if anyone is bouncing hard off "navigate to the directory using your terminal" after some help and still requiring a lot of trial and error, i got it figured out.

it seems you need to do every step by itself, you cant seem to just drop a multi directory address there, so if its not in c:, first thing is navigating to the correct harddrive (for me it was e:)

then instead of dropping "/documents/markdown_kaiju/" which didnt work, I had to first type "cd" and then the next step in the address. in this case:

"cd documents"

and then i had to follow the next step the same way

"cd markdown_kaiju"

heres a screen shot of things that didnt work and did: 

Also: If you are testing it out and nothing seems to be working, hit the next page. It seems to generate a (until you play around with covers i'd guess) blank page at first that'll just have your title on it. I spent a lot of time trying to figure out what went wrong with my code before realizing that.

Hi,

You could be falling over a couple of different problems with the design and implementation of Windows here.

1. Navigating between lettered drives.

Windows makes this less than intuitive, you have to change drive first and then change directories after. Eventually, because this is such a bad idea, the eventually added the /d flag in the cd command. The /d flag tells cd that you wish to change drive first as part of the command.

cd /d e:\documents\markdown_kaiju  

I could argue the folly of drive letters vs mount pointsall day, but it is what it is.

2. Wrong slash

While cmd.exe says that it supports / in paths as well as \ as a way to become compatible with every other system on the planet, the truth is that it does so very badly. There are loads of edge cases that fail on this.

On windows / is used to specify flags for command options so it could be that as your command is 

cd /documents

It could be that cmd is seeing the /d in /documents as a flag wanting to change drive and then finding no valid drive after that. I would recommend always using the windows style path separator to avoid these problems. It might work if you used:

cd \documents

But unless you need an absolute path (starts with a slash which means its a path that starts at the root of the lettered drive) I would always recommend  using a relative path.

Great that you got this running in the end though, I should add a section with some links to info on navigating the terminal for people who need it soon. 


:)

I have gotten help from another party, that says there should be no slash in windows between the cd and "documents" (or wherever you are heading) and that seems to have fixed the issue i was running into, i'll definately try to do the "/d" and see if that helps the swap to e:  along with everything et al. ^^

Yeah i was mostly trying to toss something quick out to help folks running into the same issue as I was with this, instead of just bouncing off of it xD