Skip to content

Instantly share code, notes, and snippets.

@mocyuto
Last active January 12, 2016 17:29
Show Gist options
  • Save mocyuto/8b535729b657877fbf82 to your computer and use it in GitHub Desktop.
Save mocyuto/8b535729b657877fbf82 to your computer and use it in GitHub Desktop.
bower update by Process
import java.io.File
object Bower {
def update = {
Process(Seq("bower","update"), new File("frontBuildTools")).!
}
}
object Bower {
def update = {
Process(Seq("cd","frontBuildTools;","bower","update")).!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment