# ./launcher rebuild app error './launcher: No such file or directory'

**URL:** https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762
**Category:** Development
**Created:** [23 januari 2018 om 14:58 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762 "2018-01-23T14:58:46Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![obiwankenoobi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/obiwankenoobi/32/87493_2.png) [@obiwankenoobi](https://meta.discourse.org/u/obiwankenoobi)
#### Post date: [23 januari 2018 om 14:58 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/1 "2018-01-23T14:58:47Z")

</div>

Hey guys. So I started with Discourse a couple of days ago and today I tried to install some plugin but couldn’t make it work. I followed [this](https://meta.discourse.org/t/install-a-plugin/19157) tutorial and when I get to the final stage and should have to rebuild the app I got the error `./launcher: No such file or directory` notice that my /discourse is not in /var but in /Github dir so I don’t know if it’s matter. This is my first Ruby program I working on and having a rough time. Hope you could help me! Thank you!

---

<div class="post-metadata">

### Author: ![schleifer](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/schleifer/32/86416_2.png) [@schleifer](https://meta.discourse.org/u/schleifer)
#### Post date: [23 januari 2018 om 15:04 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/2 "2018-01-23T15:04:10Z")

</div>

> [@obiwankenoobi](#):
>
> my /discourse is not in /var but in /Github dir so I don’t know if it’s matter

Yes, it matters. Replace the `cd /var/discourse` with the actual location of your files.

---

<div class="post-metadata">

### Author: ![obiwankenoobi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/obiwankenoobi/32/87493_2.png) [@obiwankenoobi](https://meta.discourse.org/u/obiwankenoobi)
#### Post date: [23 januari 2018 om 15:10 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/3 "2018-01-23T15:10:13Z")

</div>

Yes this is actually what I did. Instead of `cd /var/discourse` I did `cd /Github/discourse` because my files are there. And this is the error I get when trying to rebuild the app from this dir.

---

<div class="post-metadata">

### Author: ![jerdog](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jerdog/32/122843_2.png) [@jerdog](https://meta.discourse.org/u/jerdog)
#### Post date: [23 januari 2018 om 15:54 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/4 "2018-01-23T15:54:12Z")

</div>

what files are in that directory? And did you do a Discourse install via Docker? If so, then do you have a `/Github/docker` folder (judging by your aforementioned structure)?

---

<div class="post-metadata">

### Author: ![obiwankenoobi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/obiwankenoobi/32/87493_2.png) [@obiwankenoobi](https://meta.discourse.org/u/obiwankenoobi)
#### Post date: [23 januari 2018 om 15:59 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/5 "2018-01-23T15:59:30Z")

</div>

> [@jerdog](#):
>
> what files are in that directory? And did you do a Discourse install via Docker? If so, then do you have a `/Github/docker` folder (judging by your aforementioned structure)?

files in this dir :  
Brewfile discourse.sublime-project  
CONTRIBUTING.md docs  
COPYRIGHT.txt images  
Gemfile jsapp  
Gemfile.lock lib  
LICENSE.txt log  
Procfile package.json  
README.md packaging  
Rakefile plugins  
Vagrantfile public  
adminjs script  
app spec  
bin test  
config tmp  
[config.ru](http://config.ru) vendor  
d yarn.lock

and no I installed via Vagrant using [this](https://blog.discourse.org/2013/04/discourse-as-your-first-rails-app/) tutorial. My discourse app is still on localhost.

---

<div class="post-metadata">

### Author: ![jerdog](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jerdog/32/122843_2.png) [@jerdog](https://meta.discourse.org/u/jerdog)
#### Post date: [23 januari 2018 om 16:07 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/6 "2018-01-23T16:07:17Z")

</div>

So I am not familiar with using Vagrant, but you wouldn’t use `./launcher` to reload as that’s a Docker command - which is why it’s not in the directory.

---

<div class="post-metadata">

### Author: ![schleifer](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/schleifer/32/86416_2.png) [@schleifer](https://meta.discourse.org/u/schleifer)
#### Post date: [23 januari 2018 om 16:16 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/7 "2018-01-23T16:16:03Z")

</div>

> [@obiwankenoobi](#):
>
> I installed via Vagrant using this tutorial.

Then the plugin tutorial is completely wrong for your environment – that’s for “standard” installs. In a development install you should run `git clone` in the `plugins` folder.

---

<div class="post-metadata">

### Author: ![obiwankenoobi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/obiwankenoobi/32/87493_2.png) [@obiwankenoobi](https://meta.discourse.org/u/obiwankenoobi)
#### Post date: [23 januari 2018 om 16:31 UTC](https://meta.discourse.org/t/launcher-rebuild-app-error-launcher-no-such-file-or-directory/78762/8 "2018-01-23T16:31:28Z")

</div>

> [@schleifer](#):
>
> > [@obiwankenoobi](#):
> >
> > I installed via Vagrant using this tutorial.
> 
> Then the plugin tutorial is completely wrong for your environment – that’s for “standard” installs. In a development install you should run `git clone` in the `plugins` folder.

Thank you!

```
cd /Github/discourse/plugins
git clone 

```

Worked! (: sorry if it was dumb question I am really new to this.
