Note that there are some explanatory texts on larger screens.

plurals
  1. POBootstrap `make` error: cannot remove `docs/assets/bootstrap.zip`
    text
    copied!<p>I have applied <code>make</code> to a github bootstrap clone (<code>git clone https://github.com/twitter/bootstrap.git</code>) and I receive the following output:</p> <pre><code>mkdir -p bootstrap/img mkdir -p bootstrap/css mkdir -p bootstrap/js cp img/* bootstrap/img/ lessc ./less/bootstrap.less &gt; bootstrap/css/bootstrap.css lessc --compress ./less/bootstrap.less &gt; bootstrap/css/bootstrap.min.css lessc ./less/responsive.less &gt; bootstrap/css/bootstrap-responsive.css lessc --compress ./less/responsive.less &gt; bootstrap/css/bootstrap-responsive.min.css cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js &gt; bootstrap/js/bootstrap.js uglifyjs -nc bootstrap/js/bootstrap.js &gt; bootstrap/js/bootstrap.min.tmp.js echo "/**\n* Bootstrap.js by @fat &amp; @mdo\n* Copyright 2012 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" &gt; bootstrap/js/copyright.js cat bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js &gt; bootstrap/js/bootstrap.min.js rm bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js rm docs/assets/bootstrap.zip rm: cannot remove `docs/assets/bootstrap.zip': No such file or directory make: *** [docs] Error 1 </code></pre> <p>My <code>bootstrap/bootstrap</code> folder contains:</p> <pre><code>├── css │   ├── bootstrap.css │   ├── bootstrap.min.css │   ├── bootstrap-responsive.css │   └── bootstrap-responsive.min.css ├── img │   ├── glyphicons-halflings.png │   └── glyphicons-halflings-white.png └── js ├── bootstrap.js └── bootstrap.min.js </code></pre> <p>Do I need to worry about the <code>make</code> error, or am I good to go? (I've never used Bootstrap before).</p> <p>Thanks! Ryan</p> <p><strong>EDIT:</strong></p> <p>Applying <code>make -i</code> (thanks Beta) produces the following output (continuing on from the above output) and seems to be okay:</p> <pre><code>rm: cannot remove `docs/assets/bootstrap.zip': No such file or directory make: [docs] Error 1 (ignored) zip -r docs/assets/bootstrap.zip bootstrap adding: bootstrap/ (stored 0%) adding: bootstrap/js/ (stored 0%) adding: bootstrap/js/bootstrap.js (deflated 82%) adding: bootstrap/js/bootstrap.min.js (deflated 74%) adding: bootstrap/css/ (stored 0%) adding: bootstrap/css/bootstrap-responsive.min.css (deflated 77%) adding: bootstrap/css/bootstrap.min.css (deflated 84%) adding: bootstrap/css/bootstrap.css (deflated 85%) adding: bootstrap/css/bootstrap-responsive.css (deflated 80%) adding: bootstrap/img/ (stored 0%) adding: bootstrap/img/glyphicons-halflings.png (deflated 4%) adding: bootstrap/img/glyphicons-halflings-white.png (deflated 4%) cp bootstrap/js/bootstrap.js docs/assets/js/bootstrap.js cp bootstrap/js/bootstrap.min.js docs/assets/js/bootstrap.min.js rm -r bootstrap lessc ./less/bootstrap.less &gt; ./docs/assets/css/bootstrap.css lessc ./less/responsive.less &gt; ./docs/assets/css/bootstrap-responsive.css node docs/build cp img/* docs/assets/img/ cp js/*.js docs/assets/js/ cp js/tests/vendor/jquery.js docs/assets/js/ </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload